home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / prcm243u.zip / RBBS.CMD < prev    next >
OS/2 REXX Batch file  |  1986-11-04  |  2KB  |  27 lines

  1. ;**********************************************************************
  2. ;*                                                                    *
  3. ;* Sample command file for automatic logon to RBBS systems            *
  4. ;*                                                                    *
  5. ;**********************************************************************
  6.  
  7. EMULATE ANSI                ;* Use ANSI-BBS emulation for ANSI graphics      *
  8. IF NOT LINKED
  9.    DIAL "15"                ;* Call dialing directory entry number 15        *
  10. ENDIF
  11. TRANSMIT "!"                ;* Transmit several Carriage returns waiting     *
  12. PAUSE "1"                   ;* 1 second in between...                        *
  13. TRANSMIT "!"                ;*                                               *
  14. PAUSE "1"                   ;*                                               *
  15. TRANSMIT "!"                ;*                                               *
  16. PAUSE "1"                   ;*                                               *
  17. TRANSMIT "!"                ;*                                               *
  18. PAUSE "1"                   ;*                                               *
  19. TRANSMIT "!"                ;*                                               *
  20. WAITFOR "YOUR FIRST NAME?"  ;* Wait for first name prompt...                 *
  21. TRANSMIT "ALBERT!"          ;* Send name.                                    *
  22. WAITFOR "YOUR LAST NAME?"   ;* Wait for last name prompt...                  *
  23. TRANSMIT "EINSTEIN!"        ;* Send name.                                    *
  24. WAITFOR "(dots echo)?"      ;* Wait for RBBS password prompt...              *
  25. TRANSMIT "EMC2!"            ;* Send password                                 *
  26. ALARM                       ;* Sound alarm to let you know logon is complete *
  27.